home *** CD-ROM | disk | FTP | other *** search
- comment This file links together the Kermit modules into an excuteable program.
- comment File extensions have the usual meaning for the Data General, except
- comment that all files have been renamed to kermit.something.
- comment If you want to use the SWAT debugger, enter:
- comment ckdlnk/debug
- comment
- comment Files output from this CLI macro are:
- comment kermit.pr Kermit program
- comment kermit.er Link error message file
- comment kermit.st Symbol table
- comment kermit.dl Debugger file if /debug is requested
- comment kermit.ds Debugger file if /debug is requested
- comment kermit.lm Map file if /map is requested
- comment
- comment The list of object modules to compile is in ckdsrc.lis .
- comment
- comment If you are building Kermit without support for outgoing
- comment Telnet sessions -- maybe because you are doing the build on a
- comment system that is not running AOS/VS II or AOS/VS II TCP/IP --
- comment you should remove :LIB:SOCKIT.LB from the call to ccl.
-
- comment It is assumed that the appropriate C compiler, linker, and libraries
- comment can be found in :C. If not, alter the following command as needed:
-
- searchlist :c [!sea]
-
- push
- prompt pop
-
- comment Delete previous error file, and link a new program image
- delete/1=ig/2=ig ckdlnk.er
- delete/2=ignore ckdlnk.lm
-
- wr; wr Now linking Kermit with options: {%/%}
- wr and 3 tasks; wr
- ccl%/%/tasks=3/e==ckdlnk.er/l=ckdlnk.lm/xref/STACK=20000/HEAP=61440&
- /REV=00.05.188.00 <[ckdsrc.lis]> :LIB:SOCKIT.LB
-
- comment Delete the old program image and associated files, and
- comment rename the new program files for Kermit.
-
- DELETE/1=WARN/2=WARN kermit.<pr st>
- DELETE/1=IGNORE/2=IGNORE kermit.<dl ds er>
- [!neq [!path ckcmai.lm]x,x]
- DELETE/1=IGNORE/2=IGNORE kermit.lm
- [!end]
- rename/1=IGNORE/2=IGNORE <ckcmai kermit>.(pr st dl ds lm)
- rename/1=IGNORE/2=IGNORE <ckdlnk kermit>.er
-
- wr All Done!
- pop
-
-